git命令簡潔版,git命令

來源:互聯網
上載者:User

git命令簡潔版,git命令

1-給項目添加git

git init

2-查詢目前狀態,(紅色顯示的為在工作區,綠色為暫緩區)

git status

3-提交到暫緩區

git add .

4-提交到本地倉庫('xxxx'裡面為注釋)

git commit -m 'xxxx'

5-查看關聯的遠程代碼倉庫(如沒有 則為空白)

git remote

6-添加關聯遠程倉庫

git remote add origin https://github.com/xxxx/test.git

7-提交到遠程

git push origin master

8-本地打標籤

git tag -a '0.0.1' -m '打標籤'

9-本地打標籤簡寫

git tag '0.0.1'

10-查看本地標籤

git tag

11-本地標籤提交到遠程

git push --tags

12-本地標籤提交到遠程方法2(推薦採用)

git push origin 0.0.1

13-刪除本地版本

git tag -d 0.0.1

14-刪除遠程版本

git push origin :0.0.1

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.