wqd7001 / reference.md
keanteng's picture
update
53a9f04
|
raw
history blame
641 Bytes

How to use Git:

Basic:

git commit -m "message"
git push
git pull
git add .

Branching:

git branch # see the branches
git status # see anything to commit
git checkout <branchname> # switch branch

Put New Branch On Remote
git push --set-upstream origin <branchname>

Delete Branch On Remote
git push origin --delete <branchname>

Delte Branch On Local
git branch -d <branchname>

Create Branch On Local
git checkout -b <branchname>

Merge branch
git merge <branchname> # make sure you are at the branch and merge the other branch

Creating file

cat > <filaname>
vim <filename>
touch <filename>