コマンドはそこまで難しくない。 ・インストール $ sudo apt-get install git ・初期設定 $ git config --global user.name "user" $ git config --global user.email "user@mail.com" ・ローカルリポジトリ作成 $ mkdir -p tool/github/ $ cd tool/github/ $ git init ・GitHub登録 $ git remote add master GitHubのリポジトリURL ・リモートからのPull $ git pull GitHubのリポジトリURL ・ローカルリポジトリのファイルへの追加とコミット $ touch README $ git add README $ git commit -m 'first commit' matarain@websrv01:~/tool/github$ git push -u remote master Microsoft account
コマンドはそこまで難しくない。 ・インストール $ sudo apt-get install git ・初期設定 $ git config --global user.name "user" $ ...
=======================================
http://ift.tt/1abnmbU
February 28, 2016 at 10:25AM
=======================================
コマンドはそこまで難しくない。
・インストール
$ sudo apt-get install git
・初期設定
$ git config --global user.name "user"
$ git config --global user.email "user@mail.com"
・ローカルリポジトリ作成
$ mkdir -p tool/github/
$ cd tool/github/
$ git init
・GitHub登録
$ git remote add master GitHubのリポジトリURL
・リモートからのPull
$ git pull GitHubのリポジトリURL
・ローカルリポジトリのファイルへの追加とコミット
$ touch README
$ git add README
$ git commit -m 'first commit'
matarain@websrv01:~/tool/github$ git push -u remote master
・インストール
$ sudo apt-get install git
・初期設定
$ git config --global user.name "user"
$ git config --global user.email "user@mail.com"
・ローカルリポジトリ作成
$ mkdir -p tool/github/
$ cd tool/github/
$ git init
・GitHub登録
$ git remote add master GitHubのリポジトリURL
・リモートからのPull
$ git pull GitHubのリポジトリURL
・ローカルリポジトリのファイルへの追加とコミット
$ touch README
$ git add README
$ git commit -m 'first commit'
matarain@websrv01:~/tool/github$ git push -u remote master
http://ift.tt/1abnmbU
February 28, 2016 at 10:25AM
コメント
コメントを投稿