git常用コマンド収集
5122 ワード
[gitリモート操作コマンド]
1.
1.git config add user.name z***haiyu嗳配置は、設定ファイルに新たな属性を追加するように構成されています.
4.git config菗複数のconfigに関する操作のコマンドを確認する
1.
$ git remote –
v # ,
harvey@harvey:~/node$ git remote -v
nodejs https://github.com/******/nodejs.git (fetch)
nodejs https://github.com/*******/nodejs.git (push)
2.$git remote add test 1 http://test1.js菗追加アドレスはhttp://test1.js別名test 1と呼ばれる遠隔倉庫である.harvey@harvey:~/node$ git remote add test1 http://test1.js
harvey@harvey:~/node$ git remote -v
nodejs https://github.com/zhanghaiyu/nodejs.git (fetch)
nodejs https://github.com/zhanghaiyu/nodejs.git (push)
test1 http://test1.js (fetch)
test1 http://test1.js (push)
3.$git fetch pb〓サーバ上のすべての人が提出した直接にない内容をキャプチャします.$ git fetch pb
remote: Counting objects: 58, done.
remote: Compressing objects: 100% (41/41), done.
remote: Total 44 (delta 24), reused 1 (delta 0)
Unpacking objects: 100% (44/44), done.
From git://github.com/paulboone/ticgit
* [new branch] master -> pb/master
* [new branch] ticgit -> pb/ticgit
4.$git push origgin master((zhi)は、別名orignと呼ばれる遠隔サービス倉庫にmasterとして分岐する内容をプッシュします.harvey@harvey:~/node$ git push -u origin master
Username for 'https://github.com': zhanghaiyu
Password for 'https://[email protected]':
Counting objects: 10, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (8/8), done.
Writing objects: 100% (10/10), 972 bytes | 0 bytes/s, done.
Total 10 (delta 2), reused 0 (delta 0)
To https://github.com/zhanghaiyu/nodejs.git
* [new branch] master -> master
Branch master set up to track remote branch master from origin.
5.$git remote rename pb paul嗳リモートサーバの別名pbをPaulに変更し、デフォルトの最初の別名はorigginです.$ git remote rename pb paul
$ git remote
origin
paul
[gitプロファイル操作コマンド]1.git config add user.name z***haiyu嗳配置は、設定ファイルに新たな属性を追加するように構成されています.
harvey@harvey:~/node$ git config core.excludesfile ~/node/.git/info/exclude #
2.git config--unset coret.excludefile菗キャンセルgitのパラメータ配置harvey@harvey:~/node$ git config --unset core.excludesfile
3.git config–list钻表示のすべての構成4.git config菗複数のconfigに関する操作のコマンドを確認する