Process to Push Code
1) Check in which files we made changes
git status
2)Add changed files from the working directory to the staging area.
git add.
3)Move your Stage files to the local repository
git commit -m "Fetch Default Brand Category Images"
4)Create a new branch from Existing Branch
git checkout -b FeatureBrandImages
5) Move your local repository content to a remote repository.
git push --set-upstream origin FeatureBrandImages
Comments
Post a Comment