Subject [RESEND v9 12/12] pinctrl: dt-bindings: add bindings for Rockchip...
create mode 100644 Documentation/devicetree/bindings/pinctrl/pinctrl-rk805.txt diff --git a/Documentation/devicetree/bindings/pinctrl/pinctrl-rk805.txt...
View ArticleLearn the basics of the ZSH shell
cd ../.. = ... cd ../../.. = .... mkdir -p = md rmdir = rd git add = ga git add --all = gaa git branch = gb git commit -m = gcmsg git checkout = gco git pull origin currentbranch = ggpull git push...
View Article19 Tips For Everyday Git Use
If you want to force git to keep branches history, similarly to what you would see during a pull request, you can add a --no-ff flag, resulting in a nice commit history tree. git merge --no-ff...
View ArticleHow To Use Git Effectively
... host ~/git/testing $ git init Initialized empty Git repository in /home/user/git/testing/.git/ Once your have initialized your new empty repository, you can add your files. The following will add...
View ArticleAn Intro to Git and GitHub for Beginners (Tutorial)
For example, if you have a 'projects' folder on your desktop, you'd do something like: Go ahead and add a new file to the project, using any text editor you like or running a touch command. Once you've...
View ArticleGit and the interactive patch add
Sometimes, while working, we see a fix that should be made to a part of a file that is near our work area, but is not directly related to what we are working on. Do we make the fix now and just throw...
View ArticleGit Tutorial: A Comprehensive Guide
Also, no untracked files are present because Git has not listed any. *After using these commands, files are tracked and staged for committing. After adding a new file called EXAMPLE, you would see...
View ArticleLearn Git in 30 Minutes
Now that we've installed git on our computer, we will need to add some quick configurations. There are a lot of options that can be fiddled with, but we are going to set up the most important ones: our...
View Article19 Tips For Everyday Git Use
If you want to force git to keep branches history, similarly to what you would see during a pull request, you can add a --no-ff flag, resulting in a nice commit history tree. git merge --no-ff...
View ArticleHow to run FIS 2.0 application using source S2I deployment procedure
Let’s say we created ‘testingAgain’. Copy the repository url. Now create a local git repository and add the remote github url to the local git repo. git init git add * git commit -m "Added spring-boot...
View ArticleGit Tutorial: A Comprehensive Guide
Also, no untracked files are present because Git has not listed any. *After using these commands, files are tracked and staged for committing. After adding a new file called EXAMPLE, you would see...
View ArticleGit and the interactive patch add
Sometimes, while working, we see a fix that should be made to a part of a file that is near our work area, but is not directly related to what we are working on. Do we make the fix now and just throw...
View ArticleNew #Course: Beginning Git
Video 6: The Staging Area (Free!) Before you can create a Git commit, you have to use the “add” command. What does it do? Discover how to use the staging area to great effect through the interactive...
View Article10 Tips to Push Your Git #Skills to the Next Level
To bring you up to 65% off web hosting, plus free access to the entire SitePoint Premium ... use of the features that Git provides. Note: Some commands in this article include part of the command in...
View ArticleGit Tutorial – Commands And Operations In Git
edureka5.txt and edureka6.txt but they are not added to the index yet. I am adding edureka5.txt using the command: git add edureka5.txt I have added edureka5.txt to the index explicitly but not...
View ArticleGit: Interactively Stage Portions of a Single Changed File for Commit Using...
The thing which makes Git powerful as a version control system is its flexibility, and the many ways exposed by the Git API to get things done. Of course, this is also what can make Git challenging to...
View ArticleHow To Use Git Effectively
... host ~/git/testing $ git init Initialized empty Git repository in /home/user/git/testing/.git/ Once your have initialized your new empty repository, you can add your files. The following will add...
View ArticleAn Intro to Git and GitHub for Beginners (Tutorial)
For example, if you have a 'projects' folder on your desktop, you'd do something like: Go ahead and add a new file to the project, using any text editor you like or running a touch command. Once you've...
View ArticleGit for Beginners
The next step is to create some files in the directory. You could use a text editor like Vim. Note that if you are going to add Git to an already existing directory, you do not need to perform this...
View Article#Spring Cloud Config Series Part 2: Git Backend
For the embedded setup, you would have to have a custom solution since there is no centralized server that will manage all the configuration to which you can add the /monitor endpoint. In this post we...
View Article