If you are filing for your spouse, he or she must complete and sign Form I-130A, Supplemental Information for Spouse Beneficiary. If your spouse is overseas, Form I-130A must still be completed, but your spouse does not have to sign Form I-130A. Form I-130A must be submitted with Form I-130.
In addition to submitting Form I-130A, you will have to include other supporting documents for your green card application to prove your spousal relationship. Affidavits written by people who can personally confirm your marriage and include: The full name and addresses of the writer.
How Do You Complete and File Form I-130A? Part 1: Information About You. Part 2 and 3: Information About Your Employment Inside and Outside the United States. Part 4: Spouse Beneficiary's Statement, Contact Information, Certification, and Signature. Part 5: Interpreter's Contact Information, Certification, and Signature.
It's a simple 2 steps process: Generate the patch: git diff > some-changes.patch. Apply the diff: Then copy this patch to your local machine, and apply it to your local working copy with: git apply /path/to/some-changes.patch. And that's it! The changes are now in your working copy and ready to be staged/commit/pushed :)
The I-130 and I-130A are forms used by U.S. citizens or lawful permanent residents to petition for their spouse to immigrate to the United States as an immediate relative. The I-130 is the Petition for Alien Relative, while the I-130A is the Supplemental Information for Spouse Beneficiary.
Who needs to fill out the I-130A? The spouse seeking a marriage-based green card must complete the I-130A form and include it with their family sponsorship form. If they live in the United States, they must sign the I-130A.
To checkout a previous commit, you will use the Git checkout command followed by the commit hash you retrieved from your Git log.
How Do You Revert Git Commit? Use the Git log or reflog command to find the ID of the commit you want to revert. Enter the Git revert command (see below), including the commit ID you want to work on. Provide an informative Git commit message to explain why you needed to perform the Git revert.
Steps for sparse checkout Initialize a new Git repository: git init <repo-name> ... Add the remote repository: git remote add origin <repository-url> ... Enable sparse checkout. Create a sparse-checkout file that specifies which files to check out. Fetch the data and checkout the specific file:
To revert your file to the state prior to the last commit, run: 'git checkout HEAD^ /path/to/file'. Next, you can update the last commit with your reverted file with: 'git commit –amend'. Finally, you push the updated commit to your repository using: 'git push -f'.