2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Git,Githubの操作復習大全

Last updated at Posted at 2024-12-03

概要

  • 本記事は、未完成状態にあります。著者が経験したGit,GitHubにおける操作や、「あれ...この操作どうやるんだっけ?」という疑問に対して著者が著者のために作成する記事となります。
    この操作もよく使うので、記載して欲しい!!という内容がありましたら、是非コメントお願いいたします。
  • 操作環境としては、Macbook,Warp,VScodeを使用しております。

基本操作

  • file操作
cat file_name
  • fileの作成
touch file_name
  • ディレクトリの作成
mkdir directory_name
  • fileの編集
code file_name
  • file名の変更
git mv file_name new_file_name
  • fileの移動(上段)、ディレクトリの移動(下段)

### ローカルとGithubの繋ぎ込み
### Githubからローカルへの落とし込み
### .DS_Storeの無視(Mac向け)
### git push origin main
### branch関連
2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?