寄稿しました。詳細は上記記事で。
もくじ
環境
- git for windows(Windows Client tool)
- Bitbucket(SaaS)
cd 開発場所パス
git clone https://チーム名@bitbucket.org/チーム名/リポジトリ名.git
README.mdを作成
echo "This is README " >> README.md git add README.md git commit -m "First commit. Adding a README."
基本的なファイル更新の流れ
- ファイルを追加・・・コミット前の準備としてインデックスに一時的に保存
git add ファイル名 - ファイルをコミット・・・追加や変更をリポジトリに記録
git commit ファイル名 - ファイルを更新・・・リモートリポジトリに反映
git push origin master
git add ファイル名
git commit ファイル名
git push origin master