Posts

Showing posts with the label GitLab

Top 10 CI systems with Git

Image
GitHub welcomes all CI tools Continuous Integration ( CI) tools help you stick to your team's quality standards by running tests every time you push a new commit and reporting the results to a pull request. Combined with continuous delivery ( CD) tools, you can also test your code on multiple configurations, run additional performance tests, and automate every step until production.

Open Git Bash with default path

Image
Problem:  Every-time I launch git bash I need to traverse to the work-space directory that I am working on. Solution: There are different ways you could do this: the easiest is to Right click on the Windows shortcut that you use to launch git bash, and click Properties. Change the value of "Start In" to your desired workspace path Or use ConEmu where you have a task for starting Git Bash like Note the button "Startup dir..." in the bottom. It adds a -new_console:d: to the startup command of the Git Bash. Make it point to wherever you like Or Add the line to the .bashrc file in the home directory (create the file if it doesn't exist): cd ~ touch . bashrc echo "cd ~/Desktop/repos/" >> . bashrc

.gitignore templates for all programming languages

Image
Problem: Trying to find the best .gitignore for C# Solution: GitHub has a complete  "Collection of useful .gitignore templates" . The .gitignore for Visual Studio can be found here: https://github.com/github/gitignore/blob/master/VisualStudio.gitignore .github adding a template to help streamline review process a year ago Global Optionally add log files to Vagrant and improve file's comments 2 months ago Actionscript.gitignore Add FlashDevelop and executables to Actionscript a year ago Ada.gitignore ensure single trailing newline 3 years ago Agda.gitignore Create Agda.gitignore 4 years ago Android.gitignore Ignore dictionaries to reflect docs 5 months ago AppEngine.gitignore Added template for Google App Engine 3 years ago AppceleratorTitanium.gitignore Added Appcelerator Titanium .gitignore file. 5 years ago ArchLinuxPackages.gitignore Add .jar, .exe and .msi 2 years ago Autotools.gitignore autotools.gitignore: add missing files 10 months ago C+...