Git 超實用指令集合

2021-09-18 02:44:13 字數 1353 閱讀 8434

1、git

git log日誌型別

刪除遠端tags

$ git push origin :refs/tags/***
刪除遠端分支

$ git branch -d 

$ git push origin :dev

發布npm版本

$ npm publish --access=public
記住使用者名稱、密碼

$ git config --global credential.helper store
版本回退

$ git reset --hard head^        回退到上個版本

$ git reset --hard ***xx 回退到指定版本

$ git pu

sh origin head --force 強制提交遠端分支

[reset、revert操作]

發布補丁版本

$ npm run release -- --release-as patch
切換多個git使用者

在專案倉庫中指定使用者名稱和郵箱即可

$ git config user.name ***x

$ git config user.email ***x

新增許可權

$ npm owner add yangxin2 @yy/xhfev --registry=
遠端關聯倉庫

$  git init

$ git add .

$ git commit -m 'init'

$ git remote add origin [email protected]:remoterepo/***.git

$ git pull origin master --allow-unrelated-histories

$ git push -u origin master | git push --set-upstream origin master

修改遠端倉庫

$  git remote set-url origin [email protected]:remoterepo/***.git

ssh-add -k ~/.ssh/id_rsa

Git常用指令集合

git是一種非常優秀的免費開源分布式版本控制系統。本文將對常用的命令進行集中記錄,以方便查閱 需要注意的是,這裡我只簡要記錄指令功能,對於新人學習來說還是推薦廖雪峰老師的教程,非常淺顯易懂。1.基本操作 2.遠端倉庫 3.分支管理 基本操作速查 1.安裝完成後設定 git config global...

Git操作指令集合

git add 將檔案提交至暫存區 git add a 將所有檔案一次性提交至暫存區 注意a一定要為大寫字母 git status 檢視目前狀態 git commit m message 將檔案提交至本地倉庫 並設定提示資訊 git commit m message a 一次性將檔案提交至本地倉庫 ...

Git常用指令集合 (基本操作)

git是一種非常優秀的免費開源分布式版本控制系統。本文將對常用的命令進行集中記錄,以方便查閱。需要注意的是,這裡我只簡要記錄指令功能,對於新人學習來說還是推薦廖雪峰老師的教程,非常淺顯易懂。1.安裝完成後設定 git config global user.name your name git con...