Displaying 2 results from an estimated 2 matches for "gitdir".
Did you mean:
getdir
2012 Dec 12
1
/usr/src/sys/conf/newvers.sh, SYSDIR set to wrong directory.
...that broke my buildworld was
having .git directory at the root directory of the system because I
recently started using GIT to track the configuration files.
I added some debug echos to the newvers.sh and I found out it's
setting SYSDIR to /bin/.. which in turn causes the newvers.sh to set
the gitdir to /.git and that seems to break the logic in newvers.sh.
Isn't SYSDIR supposed to be set to the sys -subdirectory of the source
tree (/usr/src/sys default)?
I'm guessing the reason the SYSDIR gets set to /bin/.. is the line in
newvers.sh:
SYSDIR=$(dirname $0)/..
$0 is actually /bin/sh...
2011 Jun 30
1
[LLVMdev] Introduction to git-bisect with "llvm-project.git"
.../your/clang
4. for each submodules, make sure master should track upstream.
$ cd llvm
$ git remote add origin http://llvm.org/git/llvm.git
$ git fetch origin
$ git checkout --track origin/master
$ git pull
5. If you take clang, please symlink clang under llvm/tools :)
On msysgit, "gitdir" feature would help you. (I will describe later)
6. for each submodule you will take, $ git submodule init llvm
7. (optional) git submodule update
8. Install too hook scripts on .git/hooks
X. on llvm-project,
$ git checkout master; git pull
Usually, you would not need to use "git...