1. 程式人生 > >git命令相關總結

git命令相關總結

github倉庫的建立請看:https://www.linuxidc.com/Linux/2017-11/148628.htm

倉庫的建立做一下記錄:

點選右上角settings -> SSH and GPG keys -> new sshkeys 

在ubuntu下執行:

 ssh-keygen -t rsa -C "[email protected]"

cd /root/.ssh

這裡就有一個id_rsa 和id_rsa.pub檔案

將id_rsa.pub的內容複製到倉庫new_keys即可

1 刪除遠端倉庫的資料夾

git rm -r --cached test
git commit -m "刪除test資料夾" 
git push

2 建立並切換到develop分支

git checkout -b develop

3 檢視所在分支

git branch

4 新增檔案到分支

新增檔案:
    git add test/test.txt
加入分支:
    git commit -m "新增test.txt檔案"
上傳分支到遠端倉庫:
    git push origin develop

5 檢視修改情況

git log

commit ec4751a3914199a1cd8bf686493e0b6701f9086e (HEAD -> develop, origin/develop)

6 版本回退

回退到上一個版本
git reset --hard

指定退到某個版本
git reset --hard ec4751a(版本的commit ID 前幾位)

7 建立一個git專案