Git 常用命令

2021-07-28 14:47:53 字數 1536 閱讀 7027

git 命令

create a new repository

git clone ssh:

cd footballmagic

touch readme.md

git add readme.md

git commit -m "add readme"

git push -u origin master

existing folder or git repository

cd existing_folder

git init

git remote add origin ssh:

git add .

git commit

git push -u origin master

git rm --cached [檔名] 將檔案移除快取

git .add和commit要使用兩次,第一次只是將檔案內容追蹤

.gitignore 檔案內容

*.iml

.gradle

.idea/

.settings/

/local.properties

/.idea/workspace.xml

/.idea/libraries

.ds_store

/build

/captures

.externalnativebuild

//mac刪除資料夾下的所有 .svn 檔案

find . -name 「.svn」 | xargs rm -rf

//刪除資料夾下的所有 .git 檔案

find . -name 「.git」 | xargs rm -rf

新增多個ssh key

cd  ~/.ssh

ssh-keygen -t rsa -c "***@xx.com"

在第一次回車的時候輸入別名:is_rsa_gitlab 然後回車兩次, ls 檢視會出現此別名的rsa

ssh-agent -s

ssh-add ~/.ssh/id_rsa_gitlab

如果出現 could not open a connection

exec ssh-agent bash 再執行上行**

然後將rsa_gitlab_pub裡面的內容放入到伺服器上ssh key 指定位置處

ssh -t git@git.***.xx 測試是否連線成功 welcome ***代表成功

.ssh目錄新建config檔案關聯指定key檔案

# gitlab

host git.lab.com

hostname git.lab.com //這裡填你們公司的git**即可

preferredauthentications publickey

identityfile ~/.ssh/id_rsa_gitlab

user xxl

常用命令 Git 常用命令大全

安裝教程可參照 廖雪峰老師的安裝教程。git config 在git中,使用git config 命令來配置 git 的配置檔案,git配置級別主要有3類 1 倉庫級別 local 本地 git 倉庫級別配置檔案,作用於當前倉庫。優先順序最高 2 使用者級別 global,全域性配置檔案,作用於所有...

git 常用命令

檢視是否存在檔案需要上傳 git status git add git commit m 建立遠端倉庫 git remote add origin 116.255.146.153 ruby cd work daily project.git 更新git fetch 116.255.146.153 r...

git常用命令

詳細 1,git log p 命令來顯示每一次提交與其父節點提交內容之間快照的差異。2,為了檢視載入 staged 而並未提交 not committed 的內容差異,可以使用 git diff stage 命令 在git 1.6之前的版本中,使用 cached 適應情形 在執行git commit...