Gitでソースバージョン管理用の基本コマンド
2020年07月14日
Command line instructions
# Git global setup
リモートサーバへ接続するため、先にユーザ名とメールアドレスの設定が必要です。
git config --global user.name "momotarou" git config --global user.email "momotarou@example.com"
# Create a new repository
リモートサーバに存在しているソースをローカルに取得し、ローカルで更新後、リモートサーバへコミットする手順。
#サーバからソースを取得する git clone https://github.com/your_git_acount/XlsWxg cd xlswxg touch README.md git add README.md git commit -m "add README" git push -u origin master
# Existing folder
初回ローカルでコーディングしたソースをリモートサーバへ上げる場合、
git initで初期化が必要です。
cd existing_folder git init git remote add origin http://github.com/your_git_acount/existing_folder.git #リモートサーバへ上げる前に、.gitignoreファイルを作成して、 git add . git commit -m "Initial commit" git push -u origin master
#Existing Git repository
再度ソースを更新して、リモートサーバへ上げる場合、git pushで行えます。
cd existing_repo git remote add origin http://github.com/your_git_acount/existing_folder.git git push -u origin --all git push -u origin --tags
git commit と git pushの違い:
git commit: ローカルで、オフラインでもバージョン管理が行えます。
git push :ローカルのバージョン情報をリモートサーバへ更新します。オンラインでバージョン連携管理、他の端末よりgit pullで最新化取得が出来ます。
例として:https://github.com/lqwangxg/XlsWxg/
対応説明文書は:https://mbpsmartec.co.jp/excel%e3%82%88%e3%82%8aoracledb%e3%81%b8%e3%82%a2%e3%82%af%e3%82%bb%e3%82%b9%e3%81%99%e3%82%8b%e6%96%b0%e6%96%b9%e6%b3%95/
gitコマンド関連の紹介はネット上色々掲載されています。日本語でまとめた紹介例を参考しています。
公式サイト:https://git-scm.com/docs
その他の紹介サイト:
https://qiita.com/konweb/items/621722f67fdd8f86a017
https://qiita.com/kohga/items/dccf135b0af395f69144
弊社提供している業務の概要紹介:
弊社はiot、bigdata関連ソリューションを提供しております。詳細技術文書は後続追加掲載させて頂きます。
iot関連紹介:https://mbpsmartec.co.jp/product/
bigdata関連紹介:https://mbpsmartec.co.jp/solution/
弊社はintra-mart社のベンダーです。intra-martプラットフォーム関連ソリューションのご提供は、長年続けております。
業界初Intra-mart + IoT + BIGDATA + モバイル端末対応:
https://mbpsmartec.co.jp/si-service/