- Gitの設定
user.nameとuser.email
$ git config --global user.name "tigerii" $ git config --global user.email tigerii@example.com
- リポジトリの作成
$ mkdir mysite $ cd mysite $ git init
Githubを使わずにチームでGitを共有する方法
https://qiita.com/shuntaro_tamura/items/d04fb892c9a6b7e1ab42
git init --bare --shared /path/to/hogehoge.git
- 変更を加える
$ git add$ git rm $ git mv $ git commit -m "message"
- 変更をプッシュする
$ git push [[ ...] ]
$ git help push
...
The "remote" repository that is destination of a push operation. This parameter can be either a URL (see the section GIT URLS below) or the name of a remote (see the section REMOTES below).
...
GIT URLS
...
The following syntaxes may be used with them:· ssh://[user@]host.xz[:port]/path/to/repo.git/
· git://host.xz[:port]/path/to/repo.git/
· http[s]://host.xz[:port]/path/to/repo.git/
EXAMPLES
git push
git push origin
git push origin :
git push origin master
git push origin HEAD
すぐ分かる! git の origin と master ってなんだ?
https://qiita.com/hshimo/items/99811144bf4a081319e5
- リモートリポジトリの追加
$ git remote add <リポジトリの名前>
- クローン作成
$ git clone
- コミット履歴の閲覧
$ git log
--oneline 各コミットを一行で出力します。
--graph ブランチやマージの歴史を、ログ出力とともに アスキー
グラフで表示する
- リモートからのフェッチ
$ git fetch [remote-name]
- 変化したものを見る
$ git status $ git diff
- 作業のやり直し
[git] 戻したい時よく使っているコマンドまとめ
https://qiita.com/hogepiyo/items/9377446c3d010d91399b
・編集内容を取り消したい(addする前)
・ステージングを取り消したい
・コミットのバージョンを戻したい
・特定のファイルのみ、コミットのバージョンを戻したい
・リモートリポジトリのコミットのバージョンを戻したい
Git で不要になったローカルブランチ・リモートブランチを削除する方法
Subversion ユーザーが GitHub を使ってみたよ
入門git
- 作者: Travis Swicegood,でびあんぐる
- 出版社/メーカー: オーム社
- 発売日: 2009/08/12
- メディア: 単行本(ソフトカバー)
- 購入: 25人 クリック: 305回
- この商品を含むブログ (101件) を見る