Answers for "how to create remote repo command line"

1

create new remote branch

git checkout -b <new-branch-name>	#Create new branch locally
git push <remote-name> <new-branch-name> #Create new branch remotely
Posted by: Guest on November-26-2020
0

how to create remote webdriver

String hubURL = "http://myip:4444/wd/hub";
	DesiredCapabilities capability = DesiredCapabilities.chrome();
	capability.setBrowserName("internet explorer");
	capability.setPlatform("WINDOWS");
	capability.setVersion("9.0.4");
	WebDriver driver = new RemoteWebDriver(new URL(hubURL), capability);
	driver.get("http://www.google.com");
Posted by: Guest on January-14-2021

Code answers related to "how to create remote repo command line"

Browse Popular Code Answers by Language