Add Git Ignore to existing Visual Studio Project
Last week I mentioned adding a .gitignore file to keep a configuration file from causing issues across machines. Visual Studio make it super easy to add, but the next time I made a change to the...
View ArticleOne-keystroke git commits with Visual Studio Code
First, you view the changes with git diff, maybe refine the output with advanced options, then git add the files and finally git commit the changes. Make a couple of typos on the way and this adds up...
View ArticleSubject [PATCH 4/6] kvm: add stubs for arch specific debugfs support
diff --git a/arch/arm/kvm/arm.c b/arch/arm/kvm/arm.c index 75f130e..c638935 100644 --- a/arch/arm/kvm/arm.c +++ b/arch/arm/kvm/arm.c diff --git a/arch/mips/kvm/mips.c b/arch/mips/kvm/mips.c index...
View ArticleGit, Continuous Deployments and Your #WordPress Themes
This article will provide you with both. If you haven’t used Git yet, you may wonder why should you go for it. Here is a bunch of reasons. Cool, huh? The best thing is it gets even cooler if you add...
View ArticleContinous Deployment of Rails with #SEMaphoreCI
git remote add origin git@bitbucket.org:sarmadsabih/ci-test-and-deploy-to-ec2-capistrano.git We now need to set up an Amazon EC2 server for our app. Signup for Amazon AWS. It has a free tier which is...
View ArticleContributing to Github Projects
git remote add upstream https://github.com/f5networks/f5-common-python # Verify git remote -v origin https://github.com/jasonrahm/f5-common-python.git (fetch) origin...
View ArticleAnalyze pull requests and Travis builds using Rperform
mkdir Rperform touch Rperform/index.html Commit and push the changes. Then, checkout into the master branch. git add Rperform/index.html git commit -m "Added Rperform directory in gh-pages branch" git...
View ArticleAdd core files for mxs-lradc MFD driver.
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig @@ -198,3 +198,4 @@ intel-soc-pmic-objs := intel_soc_pmic_core.o intel_soc_pmic_crc.o intel-soc-pmic-$(CONFIG_INTEL_PMC_IPC) +=...
View ArticleOne-keystroke git commits with Visual Studio Code
First, you view the changes with git diff, maybe refine the output with advanced options, then git add the files and finally git commit the changes. Make a couple of typos on the way and this adds up...
View ArticleGit usagepracetice
Git - Stage 8. Git Concept - Local 9. Git Concept Remote 10. Git - Command line Basic Commands git add git commit git branch git checkout git checkout -b Undo Commits git reset git revert Combine...
View ArticleGitHub with Visual Studio
As I have said earlier it is nothing but only a source control to add projects. It will provide a "Choose Source Control" popup where you can choose Git as a Source Control. Other option is for TFS....
View ArticleHow to setup: Nest Bootstrap Control Panel
The instructions from the Nest Bootstrap Control Panel Git Hub repo are pretty good, but there are a few things I wanted to add. After you do the above, you an follow this guide to finish configuring...
View ArticleOptimist Prime #Facebook #Messenger Bot
For the voice recognition to work, we'll need to include ffmpeg on our Heroku dyno, which could be done by adding a Heroku Buildpack to your app's Settings tab on Dashboard:...
View ArticleMap TFVC actions to Git
You stage your new files with the git add command, which is synonymous to performing an add Items to Folder operation in TFVC. Here's a sample project to try adding files to your repo. Wondering what...
View ArticleSetting Up Jekyll for GitHub Pages in 60 Seconds
The commands will read something like: git remote add origin git@github.com:your_username/mysite.git git push -u origin master Paste these commands into the terminal to push your local repo to GitHub....
View ArticleGit, Continuous Deployments and Your #WordPress Themes
This article will provide you with both. If you haven’t used Git yet, you may wonder why should you go for it. Here is a bunch of reasons. Cool, huh? The best thing is it gets even cooler if you add...
View ArticleSubject [PATCH v3 3/3] pinctrl: cherryview: Convert to use...
diff --git a/drivers/pinctrl/intel/pinctrl-cherryview.c b/drivers/pinctrl/intel/pinctrl-cherryview.c index d23be3a2fb35..30389f4ccab4 100644 --- a/drivers/pinctrl/intel/pinctrl-cherryview.c +++...
View ArticleCubcats: Git & GitHub #Course
Cubcasts brings a course to learn how to use Git and Github. This will add “versions” to the projects and show the changes made to the code over time. This is very useful on large projects or group...
View ArticleGit client Tower adds powerful new features
Custom service accounts: users can now add accounts for their selfmanaged server ... Founded in 2010 fournova develops Mac and Windows apps such as the popular Git client Tower, which helps over 70,000...
View ArticleGit Stash
by default Git won't stash changes made to untracked or ignored files. So if we add a third file to our example above, but don‘t stage it (i.e. we don’t run git add), git stash won't stash it. $...
View Article