Brian May <[EMAIL PROTECTED]> writes: > What git commands do I need to use to checkout a branch?
# first clone the repository git clone git://repo.or.cz/conkeror.git # enter your clone cd conkeror # see your branches git branch # see the available branches git branch -r # make a local branch tracking one of the origin branches # experimental-buffers happens to be the best one right now. git branch experimental-buffers origin/experimental-buffers # checkout the branch you just made git checkout experimental-buffers # run the program* ./contrib/testrun.sh * note: this script is not very robust. read it, and if it won't work for your system, send us a patch! Hope this helps. --John _______________________________________________ Conkeror mailing list [email protected] https://www.mozdev.org/mailman/listinfo/conkeror
