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

common git command to play with git

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

we start learn about some basic command which really help full to us to manage our git account without any software

git clone [url] - This command is used to obtain a repository from an existing URL.

git add [file] - This command adds a file to the staging area.
git add * - This command adds one or more to the staging area.

git commit -m “[ Type in the commit message]” - This command records or snapshots the file permanently in the version history.
git commit -a - This command commits any files you’ve added with the git add command and also commits any files you’ve changed since then.

git push [variable name] master - This command sends the committed changes of master branch to your remote repository.
git push [variable name] [branch] - This command sends the branch commits to your remote repository.
git push –all [variable name] - This command pushes all branches to your remote repository.

git pull [Repository Link] - This command fetches and merges changes on the remote server to your working directory.

git status - This command lists all the files that have to be committed.

git log - This command is used to list the version history for the current branch.

git show [commit] - This command shows the metadata and content changes of the specified commit.

git init - This command is used to start a new repository

git branch - This command lists all the local branches in the current repository.
git branch [branch name] - This command creates a new branch.
git branch -d [branch name] - This command deletes the feature branch.

git checkout [branch name] - This command is used to switch from one branch to another.
git checkout -b [branch name] - This command creates a new branch and also switches to it.

git merge [branch name] - This command merges the specified branch’s history into the current branch.

git remote add [variable name] [Remote Server Link] - This command is used to connect your local repository to the remote server.

git stash save - This command temporarily stores all the modified tracked files.
git stash pop - This command restores the most recently stashed files.
git stash list - This command lists all stashed change sets.
git stash drop - This command discards the most recently stashed change set.

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «common git command to play with git», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

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

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

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