DThompson55
DThompson55

Reputation: 111

How to do a git add in Bluemix?

Editing a project in Bluemix. I understand how to do commits and pushes in that environment. I do not see an option for doing an add. Is it there and I'm just not seeing it? Or do I have to clone the project to my local machine and do my adds and other git commands there?

Upvotes: 1

Views: 68

Answers (4)

DThompson55
DThompson55

Reputation: 111

I get it now. It looks like there's not a separate add. You just commit, and then push, and the new file magically shows up in the master.

Upvotes: 0

ValerieLampkin
ValerieLampkin

Reputation: 2636

The Bluemix UI recently changed. If you are looking for the Add git button that was available before, you may now find a link on your application dashboard overview tab. enter image description here

Upvotes: 0

TuffBee
TuffBee

Reputation: 33

You will see "Add a git code" on your project's dashboard.

Upvotes: 0

Ram Vennam
Ram Vennam

Reputation: 3546

Are you using the browser-based DevOps Services to edit your code? If so, all new files you create should show up in the Working Directory Changes section. You can select them and commit, which is equivalent to got a git add and commit.

https://hub.jazz.net/docs/git/#commit_files_to_the_remote_branch

Upvotes: 1

Related Questions