Answers for "git merge without delete files"

0

git merge without delete files

git merge --no-commit feature
git status
git checkout master -- file1 file2 ... #sacar los archivos
git status
git add example.txt #add files wich want to merge
git status
gir commit -m "message"
Posted by: Guest on February-21-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language