Published on Aug 19, 2021 | By Tesvan team
For example, you need to transfer the information you created (from your home or work computer) to a server (for example, the GitHub repository).
So that every member of your team, or, for example, an instructor, can access your files.
In this case, you need to decide which folder or file you want to synchronize with the server, i.e. create a local storage (repository).
We will consider it using the example of working with IDEA and managing from the console. This example is not specifically tied to the software used, so you can repeat this example for your specific situation.
Step by step:
That's it, the local repository has been created, now we need to link the local and remote (GITHUB created in point 1) repositories. To do this, we need to enter the following commands:
Congratulations, you have linked the remote and local repositories.
To upload files to the remote repository, run the command:
git push - after pressing Enter, the first time you are asked to enter your GitHub username and password.
You can now see the changes made on the GitHub site.
Please note that after you have made changes with the files, in our example, this saved the project in IDEA, you need to run the following commands:
To transfer to the remote repository, run this command as well:
git push
In order, on the contrary, to get information from the remote repository to the local repository, run the command:
git pul
Aug 09, 2021 | By Tesvan team
Quality Assurance VS Quality ControlQuality assurance and quality control are two aspects of quality management. While some quality assurance and quality contro...
Aug 12, 2021 | By Tesvan team
Acceptance testing Acceptance testing is a test conducted to find if the requirements of a specification or contract are met as per its delivery. Acceptance tes...