რეპოდან გიტმა გადმოიტანა მასალა ლოკალურად
PS D:\WEB_GIS\GEOG-422510> git clone https://github.com/ezdanapak/geog510-test.git
Cloning into 'geog510-test'...
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0)
Receiving objects: 100% (3/3), done.
ახალი ტოტის შექმნა და მაშინვე მასზე გადართვა
PS D:\WEB_GIS\GEOG-422510> git checkout -b test-branch
Switched to a new branch 'test-branch'
test-branch დავფუშეთ რეპოზე
The -u sets up tracking, so future pushes can be done with just git push.
PS D:\WEB_GIS\GEOG-422510> git push -u origin test-branch
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.
შეცდომის რეპოზე
Please make sure you have the correct access rights
and the repository exists.
შეცდომის გასწორება
Check and Set Up the Remote
This command lists all remotes for your repository. If origin isn't listed, you need to add it.
Then add it as the origin remote:
PS D:\WEB_GIS\GEOG-422510> git remote -v
Go to your GitHub repository, click on the "Code" button, and copy the HTTPS or SSH URL of your repository.
Then add it as the origin remote
PS D:\WEB_GIS\GEOG-422510> git remote add origin https://github.com/ezdanapak/geog510-test.git
confirming the origin remote:
PS D:\WEB_GIS\GEOG-422510> git push -u origin test-branch
Enumerating objects: 16, done.
Counting objects: 100% (16/16), done.
Delta compression using up to 20 threads
Compressing objects: 100% (14/14), done.
Writing objects: 100% (16/16), 18.32 KiB | 6.11 MiB/s, done.
Total 16 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0)
remote:
remote: Create a pull request for 'test-branch' on GitHub by visiting:
remote: https://github.com/ezdanapak/geog510-test/pull/new/test-branch
remote:
To https://github.com/ezdanapak/geog510-test.git
* [new branch] test-branch -> test-branch
branch 'test-branch' set up to track 'origin/test-branch'.
PS D:\WEB_GIS\GEOG-422510>