内容へ移動
ClownWiki
ユーザ用ツール
ログイン
サイト用ツール
検索
ツール
文書の表示
以前のリビジョン
バックリンク
最近の変更
メディアマネージャー
サイトマップ
ログイン
>
最近の変更
メディアマネージャー
サイトマップ
トレース:
•
haproxy
•
fluentd
git:1st_step
この文書は読取専用です。文書のソースを閲覧することは可能ですが、変更はできません。もし変更したい場合は管理者に連絡してください。
====== 1st_step ====== ====== 動作イメージ ====== {{Git:1st step:git_image.PNG}} ====== 基本的な使い方 ====== ディレクトリ作成 <code> [root@a3 tmp]# mkdir test.git [root@a3 tmp]# cd test.git/ </code> git 初期化 <code> [root@a3 test.git]# git init Initialized empty Git repository in /tmp/test.git/.git/ </code> テストデータ作成 <code> [root@a3 test.git]# echo "This is test page" > test.html [root@a3 test.git]# cat test.html This is test page </code> git 状態確認\\ gitの管理対象外(Untracked files)のファイルとして「test.html」が確認できる <code> [root@a3 test.git]# git status # On branch master # # Initial commit # # Untracked files: # (use "git add <file>..." to include in what will be committed) # # test.html nothing added to commit but untracked files present (use "git add" to track) </code> 「test.html」をgitの管理下に含める <code> [root@a3 test.git]# git add test.html </code> git 状態確認\\ gitの管理下・コミット候補(Changes to be committed)のファイルとして「test.html」が確認できる <code> [root@a3 test.git]# git status # On branch master # # Initial commit # # Changes to be committed: # (use "git rm --cached <file>..." to unstage) # # new file: test.html # </code> git コミットメッセージをつけてコミット\\ ユーザの設定をしていないので、ログインユーザで自動的に設定 <code> [root@a3 test.git]# git commit -m "first commit" [master (root-commit) 69c480c] first commit Committer: root <root@a3.clown.jp> Your name and email address were configured automatically based on your username and hostname. Please check that they are accurate. You can suppress this message by setting them explicitly: git config --global user.name "Your Name" git config --global user.email you@example.com After doing this, you may fix the identity used for this commit with: git commit --amend --reset-author 1 file changed, 1 insertion(+) create mode 100644 test.html </code> ユーザの設定 <code> [root@a3 test.git]# git config --global user.name "taro" [root@a3 test.git]# git config --global user.email taro@mail.com [root@a3 test.git]# git config --global --list user.name=taro user.email=taro@mail.com </code> ユーザの設定は実行するたびに上書きされる <code> [root@a3 test.git]# git config --global user.name "hanako" [root@a3 test.git]# git config --global user.email hanako@mail.com [root@a3 test.git]# git config --global --list user.name=hanako user.email=hanako@mail.com </code> git コミットログを確認する <code> [root@a3 test.git]# git log commit 4a6788b7b2c5e9df152bc90e6b17728aab9acf0f Author: hanako <hanako@mail.com> Date: Tue Feb 5 10:18:30 2013 +0900 this is 2nd commit commit 69c480cef8a7388a238a7570bbe2b2cfd3b3ca24 Author: root <root@a3.clown.jp> Date: Tue Feb 5 10:06:11 2013 +0900 first commit </code> ====== GitHubからとってくることも可能 ====== 例えば、nginxの最新ソースを取得。 <code> [root@a3 tmp]# mkdir nginx.git [root@a3 tmp]# cd nginx.git/ [root@a3 nginx.git]# git clone git://github.com/git-mirror/nginx.git Cloning into 'nginx'... remote: Counting objects: 41740, done. remote: Compressing objects: 100% (9346/9346), done. remote: Total 41740 (delta 32018), reused 41452 (delta 31742) Receiving objects: 100% (41740/41740), 6.44 MiB | 1.34 MiB/s, done. Resolving deltas: 100% (32018/32018), done. [root@a3 nginx.git]# </code>
git/1st_step.txt
· 最終更新: 2025/02/16 13:53 by
127.0.0.1
ページ用ツール
文書の表示
以前のリビジョン
バックリンク
文書の先頭へ