git
**This is an old revision of the document!**
Table of Contents
Git
Clone a specific tag
git clone --depth 1 --branch <tag_name> <repo_url>
Specify the private SSH-key to use when executing a Git command:
ssh-agent bash -c 'ssh-add /home/git/.ssh/key-filename; git $GIT_COMMAND'
Example:
ssh-agent bash -c 'ssh-add /home/git/.ssh/key-filename; git push'
Remove submodule
- mv a/submodule a/submodule_tmp
- git submodule deinit -f – a/submodule
- rm -rf .git/modules/a/submodule
- git rm -f a/submodule # Note: a/submodule (no trailing slash)
or, if you want to leave it in your working tree and have done step 0
- git rm –cached a/submodule
3bis mv a/submodule_tmp a/submodule
Source: https://stackoverflow.com/questions/1260748/how-do-i-remove-a-submodule
How to undo local changes to a specific file
git checkout -- <file>
Source: https://stackoverflow.com/questions/31281679/how-to-undo-local-changes-to-a-specific-file
Undo all uncommitted or unsaved changes
Getting the difference between two repositories
git remote add -f b path/to/repo_b.git git remote update git diff master remotes/b/master git remote rm b
Source: https://stackoverflow.com/questions/1968512/getting-the-difference-between-two-repositories
git.1711170203.txt.gz · Last modified: 2024-03-23 by hanez