, . , ( ), , ( , ).
As soon as this is done, when the project participants want to find out if there are new changes on the remote control, they can perform it git remote updateor more often git fetch origin.
If you are working on a single branch and want to update the local branch using a remote device git pull origin <branh_name>
If you made changes that should be shared:
git add file_path_1 file_path_2 directory_path1 ...
git commit -m "<your brief message>"
git push origin <branch_name>
source
share