1. General Tasks
1.1 Creating a new repository
First initialise the repository
Write code, then commit.
1.2 Clone a repository
1
| git clone https://github_url/project-name.git
|
1.3 Changing a repositories’ remote URL
1
| git remote set-url origin https://github_url/project-name.git
|
2. Branches
2.1 List Branches
To list all branches in the current repository.
2.2 New Branch
To create a new branch named newBranchName, where BaseBranchName is the base branch.
1
| git checkout -b newBranchName BaseBranchName
|
Note: BaseBranchName is optional
2.3 Change Working Branch
Change working branch to BranchName.
1
| git checkout BranchName
|
2.4 Delete a Branch
1
| git branch -d BranchName
|
2.5 Delete a Remote Branch
1
| git push RemoteRepositoryURL -d BranchName
|
3.2 Delete a Tag
1
| git fetch --prune --tags
|
4. Subtrees
4.1 Add a new Subtree from a remote repository
1
| git subtree add --prefix LocalFolder RemoteRepoURL.git BranchName --squash
|
4.2 Update a Subtree from a remote repository
1
| git subtree pull --prefix LocalFolder RemoteRepoURL.git BranchName --squash
|
4.3 Remove a Subtree
1
| git remote rm LocalFolder
|