Skip to content

Ajay-Chandran/Scipts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

ShellScipts

Shell script for repeating tasks.

set sublime as editor;

git config --global core.editor "'C:/Program Files/Sublime Text 3/sublime_text.exe' -w" 

Proxy setting for Github:

git config --global http.https://domain.com.proxy http://proxyUsername:proxyPassword@proxy.server.com:port

#.gitconfig file will look like :
	
	[http "https://domain.com"]
		proxy = http://proxyUsername:proxyPassword@proxy.server.com:port

Credential setting store in diffrent file like .git-credentials:

git config --global credential.helper store
git config --global credential.https://domain.com.username username

	#.gitconfig file will look like :

    		[credential]
		helper = store
		[credential "https://domain.com"]
 		username = username

SSL certificate problem:

git config http.sslVerify false 

Python script for downloading file

run below commands  
	pip3 install requests
	pip install tqdm

About

Shell script for repeating tasks

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published