Tag Archives: Git

Which two capabilities are available for code in the Visual Builder Studio Git repositories? Response:

Which two capabilities are available for code in the Visual Builder Studio Git repositories?Response: A. refactor of variables in Java files B. support for large files storage (LFS) C. context aware search across the code D. checking SQL syntax against DB structure Correct Answer: B

Which two capabilities are available for code stored In Developer Cloud Service's Git repositories? Response:

Which two capabilities are available for code stored In Developer Cloud Service’s Git repositories?Response: A. Check SQL Syntax against DB structure B. Context aware search across the code C. Branch history graph visualization a D. Refactor of variables in Java files Correct Answer: A,C

Which two capabilities are available for code in the Visual Builder Studio Git repositories?

Which two capabilities are available for code in the Visual Builder Studio Git repositories? A. support for large filesstorage (LFS) B. context aware search across the code C. checking SQL syntax against DB structure D. refactor of variables in Java files Correct Answer: A

What is the Git command to delete a local branch named “experiment” without a warning?

A. git branch -rm experiment B. git branch -n experiment C. git branch -f experiment D. git branch -D experiment Answer: Option D. Explanation:  Reference: https://www.atlassian.com/git/tutorials/using-branches Show AnswerDiscussion The post What is the Git command to delete a local branch named “experiment” without a warning? appeared first on Majanto.

Which action does the Git command git merge allow the developer to perform?

A. Combine multiple sequences of commits into one unified history B. Push changes to the remote repository C. Create, list, rename, and delete branches D. Switch between branches Answer: Option A. Explanation:  Reference: https://www.atlassian.com/git/tutorials/using-branches/git-merge Show AnswerDiscussion The post Which action does the Git command git merge allow the developer to perform? appeared first on Majanto.

What is the outcome of executing this command? git clone ssh:/john@example.com/path/to/my-project.git

A. creates a local copy of a repository called “my-project” B. initiates a new Git repository called “my-project” C. creates a copy of a branch called “my-project” D. creates a new branch called “my-project” Answer: Option A. Explanation:  Reference: https://www.atlassian.com/git/tutorials/setting-up-a-repository/git-clone Show AnswerDiscussion The post What is the outcome of executing this command?<br><i> git clone ssh:/john@example.com/path/to/my-project.git</i> appeared first on… Read More »

Drag and drop the Git commands from the left onto the right that add modified local files to a remote repository. Not all options are used.

Drag and drop the Git commands from the left onto the right that add modified local files to a remote repository. Not all options are used. Select and Place: Answer: Explanation:  No answer description available for this question. Show AnswerDiscussion The post Drag and drop the Git commands from the left onto the right that add modified local… Read More »

A developer is working on a feature for a new application. The changes in the existing branch named ‘feat00304’ must be integrated into a single commit with the current working primary branch named ‘prodapp411926287’. Which git command must be used?

A. git rebase –merge feat00304 B. git merge –squash feat00304 C. git push –rebase feat00304 D. git checkout –squash feat00304 Answer: Option B. Explanation:  No answer description available for this question. Show AnswerDiscussion The post A developer is working on a feature for a new application. The changes in the existing branch named ‘feat00304’ must be integrated into… Read More »

A file that already exists in a local repository is updated. Which command must be executed to ensure that the changes in the file are included in the next Git commit?

A. git update B. git merge C. git add D. git rebase Answer: Option A. Explanation:  No answer description available for this question. Show AnswerDiscussion The post A file that already exists in a local repository is updated. Which command must be executed to ensure that the changes in the file are included in the next Git commit?… Read More »