O
O
Ostap2020-05-09 16:57:18
git
Ostap, 2020-05-09 16:57:18

How to add a finished project to GitHub using Pull Request?

Hello!
I have a project on my computer. There is a repository on github. I have been given access to the repository. It is necessary to add changes through Pull Request.
Original text. create a branch dev in the repo, make a PR of each of the items in 1. above against the DEV branch
Thanks

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dubolom Unicellular, 2020-05-09
@Your_Uncle_Ostap

You write three commands on your computer to the command line:
git add -A - Register ALL files that you have changed or added (capital letter A with English all - all)

git commit тут твое сообщение о том, что ты изменил в проекте
- But you haven't pushed the files to the repository yet (repo for short)
git push - Already adding everything to the repo (finally).
And if you want to copy the repo to another computer, then here's the command:
git pull
If it's not very clear, I recommend Gosh (part 1 of the study)
:

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question