GitHub Cheatsheet

1. General Tasks

1.1 Creating a new repository

First initialise the repository

1
git init

Write code, then commit.

1
git 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.

1
git branch -a

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. Tags

3.1 List All Tags

1
git tag

3.2 Delete a Tag

1
git tag -d TagName

3.3 Sync Local/Remote Tags

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