Git
Fetch
git fetchFetch from remote:
git fetch [remote]Merge with another branch:
git merge [branch]Options:
Merge with unrelated histories:
--allow-unrelated-histories
Remotes
Set remote:
git remote add [remote name] [email protected]:[account]/[repo].gitVerify remote:
git remote -vTracking
Ignore tracked files locally
git update-index --assume-unchanged [<file>...]Last updated
Was this helpful?