BentCoder
BentCoder

Reputation: 12740

cap deploy with ignoring a few files

I've a few unstaged and untracked files in local GIT repo. If I run cap deploy, would they be ignored? I hope yes. I simply want those files to be ignored.

Upvotes: 0

Views: 36

Answers (1)

René Höhle
René Höhle

Reputation: 27305

Capistrano use GIT to deploy your files. They can only deploy files that are included in your GIT repository. So its deploing only files that have a commit.

Untracked and modified files cannot be deployed because that are not included and added in your repo.

Upvotes: 1

Related Questions