Hommer Smith
Hommer Smith

Reputation: 27852

How to do git add . with fugitive?

How do you do git add . in Fugitive for vim?

THe command :Git add . is not doing adding anything

Upvotes: 10

Views: 4627

Answers (2)

Philipp Moers
Philipp Moers

Reputation: 589

I think you are looking for :Gwrite.

The video here explains fugitive and what the command does very well.

Upvotes: 15

jbr
jbr

Reputation: 6258

I don't know why Git add . doesn't work, but you can use -- to seperate Git add from the path, so Git add -- . does the job.

Upvotes: 4

Related Questions