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?

githubでブランチ切り替えの練習をした

0
Posted at

バイブコーディングが主流になっても不変の技術

RAGアプリの案件にアサインしてPoCで本格的な開発経験が
初めてだったのでブランチ切ってpushする

経験がリモート環境で納期に合わせてクイック
に展開する技術だと痛感したので
自分が今、gitで自分のことを

githubで人生管理するという記事

こちらを参考に自分の
AIエンジニア・データサイエンティスト

キャリアを管理するPJとして
立ち上げるのを

現案件想定でやってみました。

こちらのリポジトリ

自分のgitステータスを確認する

git branch

結果
main

ローカルブランチ追加


git switch -c dialog

ローカルブランチdialogが追加

リモートブランチ確認

git branch -r

リモートではorigin mainのみが表示

git switch dialogに変更してpushする

1. git branch
2. git switch dialog
3. git push -u origin dialog
4. git branch -r

これでgithubにリモートブランチ追加されている

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?