0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

バージョン管理の運用について

Last updated at Posted at 2024-08-29

PCとGitHubを連携させる。

  • Githubにリポジトリをつくる
  • PC側で、ssh-keygen -t rsaで、公開鍵をつくる
  • Githubに、PC側の公開鍵を登録する

ユーザー向け

git clone リポジトリのパス

開発者向け

バージョンとコメントを記入する。その後、PCからGitHubにファイルを登録する。

# ファイルを登録する
git add .
# タグをつける
git tag -a rev0.0 -m "初期実装"
# コミットする
git commit -m "初期実装"
# GitHubにプッシュする
git push origin rev0.0

間違ってpushした時の対応

git pushを取り消す。

git reset --soft HEAD^

間違ってtagを付けたときの対応

tagを取り消す。

git tag -d rev0.0

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?