RUVIDEO
Поделитесь видео 🙏

Git #3 - Git Operations Architecture, Add & Update Multiple Files, Commit and Push code to GitHub

📁 Лайфстайл 👁️ 18 📅 04.12.2023

Git Session 3 - Git Operations Architecture, Create a GitHub Repository, Create a folder using Git, Add modify remove multiple file, Commit the changes, Verify git status, difference & log, Push the update in GitHub, Verify the changes in GitHub

1. Create a GitHub Repository. Open Git Bash and create a folder
mkdir GitTraining
2. Change user terminal to the GitTraining directory with the below command:
cd GitTraining
3. The git config command is used initially to configure the user.name and user.email.
git config --global user.name “username”
git config --global user.email “useremailaddress”
4. Initiate Git with the following command.
git init
5. Create new file file1.txt. File2.txt and file3.txt in directory and run following command to check status.
git status
6. Add command adds one or more files to staging (index).
git add file1.txt file2.txt file3.txt
7. Enter ls in Git Bash to list down all the files. Enter cat filename (cat file1.txt to get the contents in the file.
8. After staging files, user can commit them into Git.
git commit -a -m “first commit“
9. Connect git to your GitHub account with the command:
git remote add origin https://github.com/your_username/GitTraining.git
10. Add some more command to avoid any synchronization issue:
git config --global credential.provider generic
11. Push the changes to main directory of GitHub
git push -u origin master
12. Navigate to https://github.com/your_username/GitTraining to verify the changes made

Agenda:
GIT Operations Architecture
Create a GitHub Repository with README file
Open Git Bash and Create a folder
Configure Credentials to set Author details
Add few files and text in the directory
Commit the changes
Modify any existing file and validate difference
Commit the second changes
Remove any existing file
Commit the third changes
Push the update to GitHub Repository
Open GitHub Repository and verify the changes

Telegram Group:
https://t.me/joinchat/Bv_U1ZHC-5thNmFl

Facebook Page:
https://www.facebook.com/haradhanautomationlibrary

LinkedIn Profile:
https://www.linkedin.com/in/haradhan-pal-181a8326/

Facebook Group:
https://www.facebook.com/groups/995593230934871

YouTube Channel Link:
https://www.youtube.com/c/HaradhanAutomationLibrary?sub_confirmation=1

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «Git #3 - Git Operations Architecture, Add & Update Multiple Files, Commit and Push code to GitHub», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.

Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!

Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.