How to add global ignore file in git
Tech-Today

How to add global ignore file in git


This tutorial assumes that you already download and install GIT: http://git-scm.com/downloads. Note that I've done this in windows 7. Also please make sure that you add GIT_HOME/bin folder in your path.

Steps:
1.) Create a new file C:\Program Files (x86)\Git\global_gitignore.

2.) In my case I want to ignore the eclipse related files, so my global_gitignore file contains:
.project
.settings
target
.classpath
target
.DS_Store

3.) Open command prompt and execute:
git config --global core.excludesfile "C:\Program Files (x86)\Git\global_gitignore"
//on mac
git config --global core.excludesfile /Users/myAccount/.global_gitignore




- Hadoop Mapreduce Demo
Versions: Hadoop 3.1.1 Java10Set the following environment variables: JAVA_HOME HADOOP_HOMEFor WindowsDownload Hadoop 3.1.1 binaries for windows at https://github.com/s911415/apache-hadoop-3.1.0-winutils. Extract in HADOOP_HOME\bin and make...

- How To Create Ssh Key And Set In Eclipse
This page will explain how we can create an ssh key that we can set in eclipse to be use when pulling files from Git repositories. *Note that this tutorial was tested on windows 7. 1.) Open command prompt. 2.) Execute: ssh-keygen -t rsa -C "yourEmail"....

- How To Use Pmd With Eclipse
This tutorial will explain how to use PMD (http://pmd.sourceforge.net/) with eclipse. What you need: 1.) eclipse-java-helios 2.) PMD (download the latest version here: http://pmd.sourceforge.net/). Extract in c:\java a.) From here you can download a zipped...

- Java.lang.noclassdeffounderror: Com/jcraft/jsch/jschexception
Encountered this problem? java.lang.NoClassDefFoundError: com/jcraft/jsch/JSchException Already tried the jsch.jar in classpath of your system variables? Or in eclipse build path but still failed? Often when you build your project in ant, ant system will...

- Installing Sql Server Compact Edition 3.1 On Mobile Device (pocket Pc)
1.) Download the sqlce3.x installer, http://www.microsoft.com/downloads/details.aspx?FamilyId=E9AA3F8D-363D-49F3-AE89-64E1D149E09B&displaylang=en or http://www.microsoft.com/downloads/details.aspx?FamilyID=85e0c3ce-3fa1-453a-8ce9-af6ca20946c3&displaylang=en...



Tech-Today








.