1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Git】addを取り消したい

Posted at

はじめに

個人開発などはgit add .で済ませているのですが、
インターン先で変更はするけど、コミットしないファイルがあり、アンステージングを新しく学んだので記録しておきます。

変更ファイルの確認コマンド

git status

スクリーンショット 2023-03-08 15.40.12.png

今回の例ではHomeView.swiftWebView.swiftを変更しています。

ステージング

git add .

スクリーンショット 2023-03-08 15.42.26.png

本来はHomeView.swiftのみステージングしたかったのに間違えてWebView.swiftもステージングしてしまった

アンステージング

git restore --staged IconStudio/View/WebView.swift

スクリーンショット 2023-03-08 15.44.48.png

アンステージングできました

おわり

まだまだ知らないことが多そうです

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?