Y
Y
Yaroslav Urbanevich2013-12-03 13:08:53
git
Yaroslav Urbanevich, 2013-12-03 13:08:53

How to set up Qt Creator + Git on GitHub in Fedora 18?

Installed Qt Creator.
Git installed.
I have an account on GitHub.
How to combine all this? How to set up Qt Creator, Git and GitHub to work together?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexey Kiselev, 2013-12-03
@exekhua

Regardless of the development environment, you can proceed as follows.
1. Create an empty repository on GitHub or any other Git server. This will be the remote copy of your repository.
2. Create a new project in your favorite development environment.
3. Using the console or graphical Git client, create a Git repository in the new project folder.

cd [Папка проекта]
git init

4. Make the first commit, for example with a .gitignore file.
5. Set up a link to the remote repository in the local repository created in 3
origin - the name of the link to the remote repository
5. Push changes to the external repository
here we say push the master branch from the local repository to the remote repository named origin.
6. Next, use any client to work with the local repository, including the one built into the IDE.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question