Reputation: 3
What should be the sequence of commands in GIT for promoting an existing change file to the remote branch
a) push, commit b) add, push, commit c) commit, push d) add, commit, push
Upvotes: 0
Views: 43
Reputation: 26
d) add, commit, push always prefer this.
OR
first of all clone the remote branch into local then make the appropriate Changes.
Upvotes: 1