git - How can i merge code into master manually? -


i created branch master , check in code 10 times want merge 7th committed code master.how can it? (or)

i had code want merge master.the code in local machine , got code friend. can merge code master?

for first question suggested our brother can directly merge sha id. second question add more little info . first of need go current working directory

type following commands

1.git init

2.git add .

3.git commit -m 'your commit message'

and add remote url

  1. git remote add origin remote repository url

after can verify by

5.git remote -v

now push changes

  1. git push origin master

Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -