>>git config -- global user.name "your name here">>git config -- global user.email "your email here"
>>git config -l // 檢視你當前的配置>>ssh-keygen
預設設定就可以
>>
cat ~/.ssh/id_rsa.pub
生成public keys
>>git clone ***
>>git branch -r
>>git branch
git checkout "具體分支名"
git branch -m "舊的分支名" "新分支名"
>>git add "具體的檔案"或者git add .
可以新增具體檔案到索引庫或者新增全部修改的檔案
>>git commit
一般會新增一些提交的資訊
>>git status
>>git log
>> git log -"具體多少條"
如git log -2,表示只檢視最近2條
>> git reflog
檢視所有本地commit的記錄,包括git reset更早以前的記錄
>>git reset --hard "具體的commit號"
可以通過git log或者git reflog檢視commit號
需要注意,如果有沒有add的檔案,該檔案不會回退,所以使用git reset之前需要把檔案add
>>git checkout "具體檔名"
>>git pull
>>git push
git 工作中常用命令
1.刪除本地分支 git branch d branchname 2.將本地分支推到遠端倉庫,並在遠端倉庫建立新的分支 git push origin localbranch romotebranch 3.合併兩個分支 先切換到目標分支targetbranch,再進行merge操作 git chec...
git 工作中常用命令
git init 初始化 git add 新增所有檔案 git status 檢視狀態 若果是第一次會提示你輸入你的 郵箱 和姓名 git commit m 這個版本修改過的一些描述 新增到他和遠端 倉庫 git log 檢視遠端常庫有幾個版本 git reflog 詳細檢視 git reset h...
git 工作中常用命令
git init 初始化 git add 新增所有檔案 git status 檢視狀態 若果是第一次會提示你輸入你的 郵箱 和姓名 git commit m 這個版本修改過的一些描述 新增到他和遠端 倉庫 git log 檢視遠端常庫有幾個版本 git reflog 詳細檢視 git reset h...