Rajiv
Rajiv

Reputation: 3

What should be the sequence of commands in GIT for promoting an existing change file to the remote branch

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

Answers (1)

Sagar Pandav
Sagar Pandav

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

Related Questions