I need to save on the cloud the source code, but i have not finish my feature, i am using gitflow, but I have did local commit.
git commit .
git push ?
is that possible?
I need to save on the cloud the source code, but i have not finish my feature, i am using gitflow, but I have did local commit.
git commit .
git push ?
is that possible?
Yup, that's the reason why git is made. You can save your source code even if you have not finished the feature. Assuming you are on a feature branch. First add all the file using:
git add .
Then write an appropriate msg like for your own convenience :
git commit -m "Feature xxx part 1 completed, part 2 remaining"
Then just push:
git push