lang:git
git
サーバーと同期
git pull ownedName ownedBranch
サーバーへ upload
git push ownedName ownedBranch
編集手順
- ファイル編集
- git add
- git commit
サーバの場合は、さらに pull する
git サーバ構築
更新情報のみの repository (bare) を作成し、 それが git サーバになる。 local git で repository と同期する。
bare git の構築
mkdir ownedGit cd ownedGit git init --bare --shared
local git
git サーバと同一マシンの場合
git clone "path_To_ownedGit"
git サーバと別マシンの場合
git clone ssh://userName@gitServerAddress/"path_To_ownedGit"
git サーバの確認
git remote -v
git サーバの解除
git remote remove "repositoryName"
“repositoryName” は “git remote -v” の出力結果の1列目。default は、“origin”。
lang/git.txt · 最終更新: by editor