Guest User

Untitled

a guest
Jul 16th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. Case1: You are on dev branch. You change some files, add a few files. However you only want to merge changed files to master.
  2. git commit //On your dev branch
  3. git checkout master
  4. git checkout dev file1 file2 file3 ...
  5. git commit
  6. This will only merge the files you wanted
Add Comment
Please, Sign In to add comment