As the source code is handled by the version control system Git, it's useful to know some features used.
The repository uses submodules, which normally are handled directly by the Makefile, but sometimes you want to be able to work with them manually.
Following are the steps to manually get the submodules:
git clone https://[email protected]/jaseemabid/Networks-Lab.gitgit submodule initgit submodule update
Or:
git clone https://[email protected]/jaseemabid/Networks-Lab.gitgit submodule update --init
Or:
git clone --recursive https://[email protected]/jaseemabid/Networks-Lab.git
If you want to work inside a submodule, it is possible, but first you need to checkout a branch:
cd src/docsgit checkout master
After you've committed your changes to the submodule, you'll update the jquery project to point to the new commit, but remember to push the submodule changes before pushing the new jquery commit:
cd src/docsgit push origin mastercd ..git add src/docsgit commit
The makefile has some targets to simplify submodule handling:
checks out the commit pointed to by jquery, but merges your local changes, if any. This target is executed
when you are doing a normal make.
updates the content of the submodules to what is probably the latest upstream code.
make a make pull_submodules and after that a git pull. if you have no remote tracking in your master branch, you can
execute this command as make pull REMOTE=origin BRANCH=master instead.
If you want to purge your working directory back to the status of upstream, following commands can be used (remember everything you've worked on is gone after these):
git reset --hard upstream/mastergit clean -fdx
For feature/topic branches, you should always used the --rebase flag to git pull, or if you are usually handling many temporary "to be in a github pull request" branches, run following to automate this:
git config branch.autosetuprebase local(seeman git-configfor more information)
If you're getting merge conflicts when merging, instead of editing the conflicted files manually, you can use the feature
git mergetool. Even though the default tool xxdiff looks awful/old, it's rather useful.
Following are some commands that can be used there:
Ctrl + Alt + M- automerge as much as possibleb- jump to next merge conflicts- change the order of the conflicted linesu- undo an mergeleft mouse button- mark a block to be the winnermiddle mouse button- mark a line to be the winnerCtrl + S- saveCtrl + Q- quit