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
git remote add origin remote repository url
after can verify by
5.git remote -v
now push changes
git push origin master
Comments
Post a Comment