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

git & github | learn git by Ashutosh Sahu (Infosys DSE)

#git #github #dhananjay @dhananjaysharmaofficials

Git Commands

git init

*This command initializes a new Git repository in the current directory.
*It sets up the necessary files and directories for Git to track changes and manage version control.

git add .

* The "git add" command is used to prepare changes for the next commit.
The "git add ." command is used to add all files and directories in the current directory to the staging area, preparing them for the next commit.

git commit -m "first commit":

*When you run the git commit command, it takes all the changes you have added to the staging area and creates a commit. A commit is like a snapshot of your project at a specific point in time.
*To make it easier for others (and yourself) to understand what the commit is about, you can use the "-m" option followed by a message enclosed in quotes. This message should describe the changes you have made clearly and concisely.
In your case, the commit message is "first commit," which indicates that this is the initial commit capturing the first set of changes you made to your project.

git branch -M main:

*This command renames the current branch to main.
*It's commonly used to update the default branch name from master to main in Git repositories.

git remote add origin https://github.com/hacky-tosh/newRepo.git:

*The git remote add command adds a remote repository to your local Git repository.
*origin is the name given to the remote repository, and https://github.com/hacky-tosh/newRepo.git is the URL of the remote repository you want to connect to.

git push -u origin main:

* The git push command is used to upload local commits to a remote repository.
* -u origin main specifies the remote repository (origin) and the branch (main) to which you want to push the commits.



The sequence of these commands sets up a new Git repository, adds and commits the changes made to the files, renames the branch, adds a remote repository, and pushes the commits to the remote repository.

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «git & github | learn git by Ashutosh Sahu (Infosys DSE)», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

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

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

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