problem
cannot check in only file i created or modified on source control git ?
Hi i work on angular 7 project work on source control every time i finish my work
i do git push origon master
it push to all files on project and this may be damage some files on project that not updated
i need only to push to specific files i modify or created
Are this possible on git source control ?
what i have tried
- git push origon master
Veerendra AnnigerePosted Dec 28, 2019, 8:51 PM
git push origin master
or
git add [some files]
git commit -m "push some files"
git push origin master